/******************************************************************************* * --------------------------------------------------------------------------- * * File: * @(#) MSOperator.java * Author: * Mathijs Vogelzang * m_v@dds.nl * ****************************************************************************** * * * * This software is provided ``AS IS'' and any express or implied * * * warranties, including, but not limited to, the implied warranties of * * * merchantability and fitness for a particular purpose, are disclaimed. * * In * no event shall the authors or the Institute for Systems Biology * * liable * for any direct, indirect, incidental, special, exemplary, or * * * consequential damages (including, but not limited to, procurement of * * * substitute goods or services; loss of use, data, or profits; or * * business * interruption) however caused and on any theory of liability, * * whether in * contract, strict liability, or tort (including negligence * * or otherwise) * arising in any way out of the use of this software, even * * if advised of * the possibility of such damage. * * * * ****************************************************************************** * * ChangeLog * * 10-05-2004 Added this header * * Created on May 21, 2004 * ******************************************************************************/ package org.systemsbiology.jrap.stax; /** * MSOperator provides information on who operated the hardware used to acquire * data. * * @author Mathijs Vogelzang */ public class MSOperator { public String firstName, lastName; public String phoneNumber, email, URI; public String toString() { return ("firstName "+firstName+" lastName "+lastName +" phoneNumber "+phoneNumber+" email "+email +" URI "+URI); } }